home *** CD-ROM | disk | FTP | other *** search
- /* */
-
- if RxFuncQuery("FtpLoadFuncs") then
- do
- rc = RxFuncAdd("FtpLoadFuncs","RxFtp","FtpLoadFuncs")
- rc = FtpLoadFuncs()
- end
-
- if RxFuncQuery("SysLoadFuncs") then
- do
- rc = RxFuncAdd("SysLoadFuncs","RexxUtil","SysLoadFuncs")
- rc = SysLoadFuncs()
- end
-
- rc = FtpSetUser("ftp.msu.su", "anonymous", "asv@sai.msu.su")
- rc = FtpChDir("/ripe")
- rc = FtpPwd(remotedir)
- say 'remote dir is' remotedir
- rc = FtpGet("ripe-049.txt","ripe-049.txt")
- say 'ftperrno is' ftperrno
- call FtpLogoff
-